home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / MATHS / RLAB / RLAB125.ZIP / !RLaB / help_sz / sign < prev    next >
Text File  |  1994-07-13  |  303b  |  21 lines

  1. sign:
  2.  
  3. Synopsis: Sign function.
  4.  
  5. Syntax:    sign ( A )
  6.  
  7. Description:
  8.  
  9.     For real scalar argument, sign returns:
  10.  
  11.         1 if A > 0
  12.         0 if A == 0
  13.            -1 if A < 0
  14.  
  15.     For a complex scalar sign returns:
  16.  
  17.         A ./ abs (A)
  18.  
  19.     sign performs its operation on real and complex matrices in an
  20.     element by element fashion.
  21.